e09520494370ee182255f176046757494dce081d,src/es/javocsoft/android/lib/toolbox/gcm/core/GCMIntentService.java,GCMIntentService,onRegistered,#Context#String#,28

Before Change


    	GCMIntentService.context = context;
    	
    	if(NotificationModule.registerRunnable!=null){
			NotificationModule.registerRunnable.start();				
		}
    }

After Change


    	
    	GCMIntentService.context = context;
    	
    	if(NotificationModule.registerRunnable!=null &&
    	   !NotificationModule.registerRunnable.isAlive()){    		
    		Thread t = new Thread(NotificationModule.registerRunnable);
    		t.start();
		}
    }